home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2002 January / maximum-cd-2002-01.iso / Files / Mechwarrior 4 Mapping / MW4Editor.exe / content / ABLScripts / player.abl < prev   
Encoding:
Text File  |  2001-07-16  |  1.3 KB  |  58 lines

  1.  
  2. //*********************************************************************************
  3.  
  4. fsm playeraifsm : integer;
  5.  
  6. //------------------------------------------------------------------
  7. //
  8. //     Constant Definitions
  9. //
  10. //------------------------------------------------------------------
  11.     const
  12.         #include_ <content\ABLScripts\mwconst.abi>
  13.  
  14.  
  15. //------------------------------------------------------------------
  16. //
  17. //     Type Definitions
  18. //
  19. //------------------------------------------------------------------
  20.     type
  21.         #include_ <content\ABLScripts\mwtype.abi>
  22.     
  23.  
  24. //------------------------------------------------------------------
  25. //
  26. //     Variable Declarations
  27. //
  28. //------------------------------------------------------------------
  29.     var
  30.  
  31. //------------------------------------------------------------------
  32. //
  33. //     Local Functions
  34. //
  35. //------------------------------------------------------------------
  36.  
  37. function init;
  38.     code
  39. endfunction;
  40.  
  41. //------------------------------------------------------------------
  42. //
  43. //     Main Code
  44. //
  45. //------------------------------------------------------------------
  46.     state startState;
  47.         code
  48.     endstate;
  49.     
  50.   state deadState;
  51.         code
  52.   endstate;
  53.  
  54.  
  55. endfsm.
  56. //******************************************************************
  57.  
  58.